From 3324cfb900c8251d7234dd6d271f2dac1e577b6b Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Thu, 17 Apr 2014 16:13:47 +0200 Subject: [PATCH] tools/pygrub: add APPEND_LDFLAGS to CFLAGS Required to pass -Wl,-rpath,$libdir to link command. Signed-off-by: Olaf Hering Acked-by: Ian Campbell --- tools/pygrub/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/pygrub/Makefile b/tools/pygrub/Makefile index 4890927e57..a37a8b1290 100644 --- a/tools/pygrub/Makefile +++ b/tools/pygrub/Makefile @@ -6,11 +6,11 @@ include $(XEN_ROOT)/tools/Rules.mk all: build .PHONY: build build: - CC="$(CC)" CFLAGS="$(CFLAGS)" $(PYTHON) setup.py build + CC="$(CC)" CFLAGS="$(CFLAGS) $(APPEND_LDFLAGS)" $(PYTHON) setup.py build .PHONY: install install: all - CC="$(CC)" CFLAGS="$(CFLAGS)" $(PYTHON) setup.py install \ + CC="$(CC)" CFLAGS="$(CFLAGS) $(APPEND_LDFLAGS)" $(PYTHON) setup.py install \ $(PYTHON_PREFIX_ARG) --root="$(DESTDIR)" \ --install-scripts=$(PRIVATE_BINDIR) --force set -e; if [ $(BINDIR) != $(PRIVATE_BINDIR) -a \ -- 2.30.2